crypto/sha256.digest.h (field)
57 uses
crypto/sha256 (current package)
sha256.go#L53: h [8]uint32
sha256.go#L73: b = byteorder.BeAppendUint32(b, d.h[0])
sha256.go#L74: b = byteorder.BeAppendUint32(b, d.h[1])
sha256.go#L75: b = byteorder.BeAppendUint32(b, d.h[2])
sha256.go#L76: b = byteorder.BeAppendUint32(b, d.h[3])
sha256.go#L77: b = byteorder.BeAppendUint32(b, d.h[4])
sha256.go#L78: b = byteorder.BeAppendUint32(b, d.h[5])
sha256.go#L79: b = byteorder.BeAppendUint32(b, d.h[6])
sha256.go#L80: b = byteorder.BeAppendUint32(b, d.h[7])
sha256.go#L95: b, d.h[0] = consumeUint32(b)
sha256.go#L96: b, d.h[1] = consumeUint32(b)
sha256.go#L97: b, d.h[2] = consumeUint32(b)
sha256.go#L98: b, d.h[3] = consumeUint32(b)
sha256.go#L99: b, d.h[4] = consumeUint32(b)
sha256.go#L100: b, d.h[5] = consumeUint32(b)
sha256.go#L101: b, d.h[6] = consumeUint32(b)
sha256.go#L102: b, d.h[7] = consumeUint32(b)
sha256.go#L119: d.h[0] = init0
sha256.go#L120: d.h[1] = init1
sha256.go#L121: d.h[2] = init2
sha256.go#L122: d.h[3] = init3
sha256.go#L123: d.h[4] = init4
sha256.go#L124: d.h[5] = init5
sha256.go#L125: d.h[6] = init6
sha256.go#L126: d.h[7] = init7
sha256.go#L128: d.h[0] = init0_224
sha256.go#L129: d.h[1] = init1_224
sha256.go#L130: d.h[2] = init2_224
sha256.go#L131: d.h[3] = init3_224
sha256.go#L132: d.h[4] = init4_224
sha256.go#L133: d.h[5] = init5_224
sha256.go#L134: d.h[6] = init6_224
sha256.go#L135: d.h[7] = init7_224
sha256.go#L233: byteorder.BePutUint32(digest[0:], d.h[0])
sha256.go#L234: byteorder.BePutUint32(digest[4:], d.h[1])
sha256.go#L235: byteorder.BePutUint32(digest[8:], d.h[2])
sha256.go#L236: byteorder.BePutUint32(digest[12:], d.h[3])
sha256.go#L237: byteorder.BePutUint32(digest[16:], d.h[4])
sha256.go#L238: byteorder.BePutUint32(digest[20:], d.h[5])
sha256.go#L239: byteorder.BePutUint32(digest[24:], d.h[6])
sha256.go#L241: byteorder.BePutUint32(digest[28:], d.h[7])
sha256block.go#L82: h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
sha256block.go#L127: dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7] = h0, h1, h2, h3, h4, h5, h6, h7
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |